# install.packages("devtools")
#devtools::install_github("thiyangt/ceylon")
library(ceylon)1 Interactive Map Visualisation
1.1 Static Plot
ggplot(province) +
geom_sf(mapping = aes(fill = population), show.legend = TRUE) + scale_fill_viridis()
1.2 Using mapview
mapview(
province,
zcol = "population",
legend = TRUE
)